[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
The proposal to merge lp:~widelands-dev/widelands/bug-1526916 into lp:widelands has been updated. Commit Message changed to: When selecting a map, the parent directory now has a lower sort order than all other directories. For more details, see: https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 -- Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1526916 into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
When selecting a map, the parent directory now has a lower sort order than all other directories. -- https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1526916 into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
The proposal to merge lp:~widelands-dev/widelands/bug-1526916 into lp:widelands has been updated. Description changed to: When selecting a map, the parent directory now has a lower sort order than all other directories. For more details, see: https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 -- Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1526916 into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
GunChleoc has proposed merging lp:~widelands-dev/widelands/bug-1526916 into lp:widelands. Commit message: When selecting a map, the parent directory now has a lower sort order than all other directories. Requested reviews: Widelands Developers (widelands-dev) Related bugs: Bug #1526916 in widelands: "Name of folders before entry" https://bugs.launchpad.net/widelands/+bug/1526916 For more details, see: https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 When selecting a map, the parent directory now has a lower sort order than all other directories. -- Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1526916 into lp:widelands. === modified file 'src/ui_basic/table.cc' --- src/ui_basic/table.cc 2016-01-22 20:05:02 + +++ src/ui_basic/table.cc 2016-01-26 09:12:02 + @@ -345,7 +345,7 @@ curx += curw; continue; } - const Image* entry_text_im = UI::g_fh1->render(as_uifont(entry_string, m_fontsize)); + const Image* entry_text_im = UI::g_fh1->render(as_uifont(richtext_escape(entry_string), m_fontsize)); if (alignment & Align_Right) { point.x += curw - 2 * picw; === modified file 'src/wui/mapdata.h' --- src/wui/mapdata.h 2016-01-24 20:11:53 + +++ src/wui/mapdata.h 2016-01-26 09:12:02 + @@ -112,6 +112,12 @@ maptype = MapData::MapType::kDirectory; } + /// The localized name of the parent directory + static const std::string parent_name() { + /** TRANSLATORS: Parent directory/folder */ + return (boost::format("\\<%s\\>") % _("parent")).str(); + } + /// Get the ".." directory static MapData create_parent_dir(const std::string& current_dir) { #ifndef _WIN32 @@ -119,7 +125,7 @@ #else const std::string filename = current_dir.substr(0, current_dir.rfind('\\')); #endif - return MapData(filename, (boost::format("\\<%s\\>") % _("parent")).str()); + return MapData(filename, parent_name()); } /// Create a subdirectory @@ -149,6 +155,13 @@ MapData::DisplayType displaytype; bool compare_names(const MapData& other) { + // The parent directory gets special treatment. + if (localized_name == parent_name() && maptype == MapData::MapType::kDirectory) { + return true; + } else if (other.localized_name == parent_name() && other.maptype == MapData::MapType::kDirectory) { + return false; + } + std::string this_name; std::string other_name; switch (displaytype) { ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
Hi, I am bunnybot (https://github.com/widelands/bunnybot). I am keeping the source branch lp:~widelands-dev/widelands/bug-1526916 mirrored to https://github.com/widelands/widelands/tree/_widelands_dev_widelands_bug_1526916 You can give me commands by starting a line with @bunnybot . I understand: merge: Merges the source branch into the target branch, closing the merge proposal. I will use the proposed commit message if it is set. -- https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1526916 into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1525680 into lp:widelands
Continuous integration builds have changed state: Travis build 399. State: passed. Details: https://travis-ci.org/widelands/widelands/builds/104835701. Appveyor build 306. State: success. Details: https://ci.appveyor.com/project/widelands-dev/widelands/build/_widelands_dev_widelands_bug_1525680-306. -- https://code.launchpad.net/~widelands-dev/widelands/bug-1525680/+merge/283793 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/bug-1525680 into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/multiline_textarea into lp:widelands
> The reason for this is to speed up rendering - you should notice that map > descriptions now load faster again. Yes indeed... works well :-) -- https://code.launchpad.net/~widelands-dev/widelands/multiline_textarea/+merge/283736 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/multiline_textarea into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/editor_help into lp:widelands
Works well :-) If possible move the resource image(s) for "Default: ..." to the left. If it is on the right and all other images are left aligned, it looks a bit lost on the right side. -- https://code.launchpad.net/~widelands-dev/widelands/editor_help/+merge/283900 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/editor_help into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
Review: Approve functionality Works well :-) -- https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/bug-1526916. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/changelog_license_date into lp:widelands
Continuous integration builds have changed state: Travis build 403. State: passed. Details: https://travis-ci.org/widelands/widelands/builds/104872627. Appveyor build 310. State: success. Details: https://ci.appveyor.com/project/widelands-dev/widelands/build/_widelands_dev_widelands_changelog_license_date-310. -- https://code.launchpad.net/~widelands-dev/widelands/changelog_license_date/+merge/283871 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/changelog_license_date into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/multiline_textarea into lp:widelands
@bunnybot merge -- https://code.launchpad.net/~widelands-dev/widelands/multiline_textarea/+merge/283736 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/multiline_textarea into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/editor_help into lp:widelands
I see your point - done :) -- https://code.launchpad.net/~widelands-dev/widelands/editor_help/+merge/283900 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/editor_help into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/multiline_textarea into lp:widelands
The proposal to merge lp:~widelands-dev/widelands/multiline_textarea into lp:widelands has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~widelands-dev/widelands/multiline_textarea/+merge/283736 -- Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/multiline_textarea into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/changelog_license_date into lp:widelands
Thanks for collecting all the info :) Just 3 nits regarding formatting. Diff comments: > === modified file 'ChangeLog' > --- ChangeLog 2013-10-20 15:54:31 + > +++ ChangeLog 2016-01-26 11:39:20 + > @@ -1,3 +1,280 @@ > +### Build 19 until now ### Build 19 until r7734 This way, we still know which revision to start from when updating the changelog again. > +- Fixed bug #1532279: Spin box not displayed correct in options menu > +- Fixed bug #1438611: Widelands is leaking memory > +- Fixed bug #1535569: Messages window slows down game speed > +- Fixed bug #1522564: Table icons on bottom of table need cropping > +- Fixed bug #1530398: Wrong text above marble mine > +- Fixed bug #1530240: wrong text in the tribal encyclopedia for the battle ax > +- Fixed bug #1536053: Widelands without sound on win > +- Fixed bug #1519361: PlayerColor in Building menu causes render errors > +- Fixed bug #1532417: complete indicators for resource water > +- Fixed bug #1523096: Options Window redesign > +- Fixed bug #1302565: Screenshot shows wrong image when a game is chosen > with the mouse pointer > +- Fixed bug #992598: Improve road visibility for the color-blind Add extra space for alignment: Fixed bug #992598: Improve road visibility for the color-blind Same for similar entries below. > +- Fixed bug #1302577: Wrong minimap in load dialog when the save game has > been overwritten > +- Fixed bug #1370144: Playercolor mask is sometimes black > +- Fixed bug #977980: Fish and mountain ressources cannot be removed when > they are on grass > +- Fixed bug #1525395: atlantean mines failing to extract all resources > +- Fixed bug #1523165: ai malfunctions after introduction of difficulty levels > +- Fixed bug #1526514: player 2 in "" section [player_2] not found > +- Fixed bug #1503949: excessive CPU usage and loading time seemingly related > to lenght of the game > +- Fixed bug #1425870: Artefacts in render queue branch > +- Fixed bug #1515006: Create a new forested mountain terrain > +- Fixed bug #1526903: Editor crashes when changing tribe > +- Fixed bug #1522290: Gameplay suddenly gets very slow > +- Fixed bug #1395238: soldiers getting stuck > +- Fixed bug #566729: Add gametime display to replays > +- Fixed bug #1490116: fully promoted soldiers remaining in training sites > +- Fixed bug #1512077: change icons for workers in the menus > +- Fixed bug #1457425: Fight never end (also not 2h later) > +- Fixed bug #1529363: empire fisher: fishing animation does not work > +- Fixed bug #1527368: Some buildings have lost build animations; Add check > for lua tables > +- Fixed bug #1421942: Unified term for "Black" and > "Wasteland" > +- Fixed bug #1492114: Making the message window smaller > +- Fixed bug #1502965: Building statistics window does not "courtain > up" correctly > +- Fixed bug #1505723: Some performance values for the buildings help text > +- Fixed bug #1412242: Multiplayer save game selection does not show the > filename > +- Fixed bug #1509301: Loading older multiplayer savegame doesn't work > +- Fixed bug #1385859: Selecting a map in multiplayer mode crashes the game > +- Fixed bug #1508553: New win condition: artifacts > +- Fixed bug #1516777: Atlantean corn farms unproductive > +- Fixed bug #1227984: Autosave should not trigger while game is paused > +- Fixed bug #1516214: Game data error: unseen immovable: tribe > "field_harvested" does not exist > +- Fixed bug #1515161: Worker does not actually exist crash and unseen > immovable when loading > +- Fixed bug #1515359: Missing animation dismantlesite worker > +- Fixed bug #1513550: Unable to load savegame - tribe ... does not define > building type > +- Fixed bug #1278050: login problems with metaserver > +- Fixed bug #1274279: Metaserver entry in config gets deleted > +- Fixed bug #1480928: Lumberjack animation glitches > +- Fixed bug #1251914: soldier stuck in battle animation loop > +- Fixed bug #1493238: Options screen layout errors > +- Fixed bug #1368133: One Tribe > +- Fixed bug #1453528: Buildings missing menu icons > +- Fixed bug #1345663: format_help.lua has no Textdomain > +- Fixed bug #1341080: Building help: remove logic from wrappers > +- Fixed bug #1509220: Atlanteans campaign keeps counting 0 ships > +- Fixed bug #1402786: "Set origin" should be in the tools menu > +- Fixed bug #1171231: Size of minimap in the editor not changed when new map > is loaded > +- Fixed bug #1406301: Various strings need fixing > +- Fixed bug #1509452: Scenario maps aren't loaded as scenarios > +- Fixed bug #1504948: Performance issue when "no use for ships on this > map" > +- Fixed bug #1426654: Only list compatible .wmf files in the load game dialog > +- Fixed bug #861761: Improve production prioritisation > +- Fixed bug #1504952: "No use for ships on this map!" message is > not translateable > +- Fixed bug #1504366: editor crashes unexpectedly > +- Fixed bug #1502458: Carrier hiding in Warehouse/HQ is hardcoded > +- Fixed bug #580923: Pr
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/multiline_textarea into lp:widelands
Review: Approve Sorry, I am late to the review-party. I try to do one code review per day these days - not more. But I do not always manage. Just one minor style fix, I suggest to just do it in any other branch you are working on. Otherwise this is an awesome change. The font handler is really coming together now. Diff comments: > > === modified file 'src/graphic/text_layout.cc' > --- src/graphic/text_layout.cc2015-12-13 18:32:28 + > +++ src/graphic/text_layout.cc2016-01-26 07:50:51 + > @@ -54,12 +54,24 @@ > f % txt; > return f.str(); > } > + > std::string as_uifont(const std::string & txt, int size, const RGBColor& > clr) { > + return as_aligned(txt, UI::Align::Align_Left, size, clr); > +} > + > +std::string as_aligned(const std::string & txt, UI::Align align, int ptsize, > const RGBColor& clr) { nit: space between std::string and & > + std::string alignment = "left"; > + if ((align & UI::Align_Horizontal) == UI::Align::Align_Right) { > + alignment = "right"; > + } else if ((align & UI::Align_Horizontal) == UI::Align::Align_HCenter) { > + alignment = "center"; > + } > + > // UI Text is always bold due to historic reasons > static boost::format > - f(" color=%s>%s"); > - > - f % size; > + f(" shadow=1 color=%s>%s"); > + f % alignment; > + f % ptsize; > f % clr.hex_value(); > f % txt; > return f.str(); -- https://code.launchpad.net/~widelands-dev/widelands/multiline_textarea/+merge/283736 Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/multiline_textarea. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/changelog_license_date into lp:widelands
Wow, that is a lot of work! I feel bad about raising the question: How useful is the list of bugs though? I think more approachable is some prosa that explains the highlights for users and summaries the release. See for example https://launchpad.net/widelands/build18/build18-rc1, full changelog -everything above the bugs. I think only few people will understand and care about the specific bugs and if, launchpad maintains a list for each release too (see above link for 18-rc1). -- https://code.launchpad.net/~widelands-dev/widelands/changelog_license_date/+merge/283871 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/changelog_license_date into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [recipe build #1063892] of ~widelands-dev widelands-daily in trusty: Failed to build
* State: Failed to build * Recipe: widelands-dev/widelands-daily * Archive: ~widelands-dev/ubuntu/widelands-daily * Distroseries: trusty * Duration: 2 minutes * Build Log: https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+recipebuild/1063892/+files/buildlog.txt.gz * Upload Log: * Builder: https://launchpad.net/builders/lcy01-32 -- https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+recipebuild/1063892 Your team Widelands Developers is the requester of the build. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [recipe build #1063890] of ~widelands-dev widelands-daily in vivid: Failed to build
* State: Failed to build * Recipe: widelands-dev/widelands-daily * Archive: ~widelands-dev/ubuntu/widelands-daily * Distroseries: vivid * Duration: 2 minutes * Build Log: https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+recipebuild/1063890/+files/buildlog.txt.gz * Upload Log: * Builder: https://launchpad.net/builders/lgw01-11 -- https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+recipebuild/1063890 Your team Widelands Developers is the requester of the build. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Build #8899301] i386 build of widelands 1:18-ppa0-bzr7746-201601261934~ubuntu15.10.1 in ubuntu wily RELEASE [~widelands-dev/ubuntu/widelands-daily]
* Source Package: widelands * Version: 1:18-ppa0-bzr7746-201601261934~ubuntu15.10.1 * Architecture: i386 * Archive: ~widelands-dev/ubuntu/widelands-daily * Component: main * State: Failed to build * Duration: 3 minutes * Build Log: https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899301/+files/buildlog_ubuntu-wily-i386.widelands_1%3A18-ppa0-bzr7746-201601261934~ubuntu15.10.1_BUILDING.txt.gz * Builder: https://launchpad.net/builders/lgw01-12 * Source: not available If you want further information about this situation, feel free to contact a member of the Launchpad Buildd Administrators team. -- i386 build of widelands 1:18-ppa0-bzr7746-201601261934~ubuntu15.10.1 in ubuntu wily RELEASE https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899301 You are receiving this email because you created this version of this package. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Build #8899300] amd64 build of widelands 1:18-ppa0-bzr7746-201601261934~ubuntu15.10.1 in ubuntu wily RELEASE [~widelands-dev/ubuntu/widelands-daily]
* Source Package: widelands * Version: 1:18-ppa0-bzr7746-201601261934~ubuntu15.10.1 * Architecture: amd64 * Archive: ~widelands-dev/ubuntu/widelands-daily * Component: main * State: Failed to build * Duration: 3 minutes * Build Log: https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899300/+files/buildlog_ubuntu-wily-amd64.widelands_1%3A18-ppa0-bzr7746-201601261934~ubuntu15.10.1_BUILDING.txt.gz * Builder: https://launchpad.net/builders/lgw01-11 * Source: not available If you want further information about this situation, feel free to contact a member of the Launchpad Buildd Administrators team. -- amd64 build of widelands 1:18-ppa0-bzr7746-201601261934~ubuntu15.10.1 in ubuntu wily RELEASE https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899300 You are receiving this email because you created this version of this package. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Build #8899303] i386 build of widelands 1:18-ppa0-bzr7746-201601261935~ubuntu16.04.1 in ubuntu xenial RELEASE [~widelands-dev/ubuntu/widelands-daily]
* Source Package: widelands * Version: 1:18-ppa0-bzr7746-201601261935~ubuntu16.04.1 * Architecture: i386 * Archive: ~widelands-dev/ubuntu/widelands-daily * Component: main * State: Failed to build * Duration: 3 minutes * Build Log: https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899303/+files/buildlog_ubuntu-xenial-i386.widelands_1%3A18-ppa0-bzr7746-201601261935~ubuntu16.04.1_BUILDING.txt.gz * Builder: https://launchpad.net/builders/lgw01-10 * Source: not available If you want further information about this situation, feel free to contact a member of the Launchpad Buildd Administrators team. -- i386 build of widelands 1:18-ppa0-bzr7746-201601261935~ubuntu16.04.1 in ubuntu xenial RELEASE https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899303 You are receiving this email because you created this version of this package. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Build #8899302] amd64 build of widelands 1:18-ppa0-bzr7746-201601261935~ubuntu16.04.1 in ubuntu xenial RELEASE [~widelands-dev/ubuntu/widelands-daily]
* Source Package: widelands * Version: 1:18-ppa0-bzr7746-201601261935~ubuntu16.04.1 * Architecture: amd64 * Archive: ~widelands-dev/ubuntu/widelands-daily * Component: main * State: Failed to build * Duration: 3 minutes * Build Log: https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899302/+files/buildlog_ubuntu-xenial-amd64.widelands_1%3A18-ppa0-bzr7746-201601261935~ubuntu16.04.1_BUILDING.txt.gz * Builder: https://launchpad.net/builders/lgw01-16 * Source: not available If you want further information about this situation, feel free to contact a member of the Launchpad Buildd Administrators team. -- amd64 build of widelands 1:18-ppa0-bzr7746-201601261935~ubuntu16.04.1 in ubuntu xenial RELEASE https://launchpad.net/~widelands-dev/+archive/ubuntu/widelands-daily/+build/8899302 You are receiving this email because you created this version of this package. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/changelog_license_date into lp:widelands
Thanks for pointing me on formatting. About the prosa text, i don't know. I just had time and wanted to do some thing. I couldn't write such prosa so it has to do someone else. But i think a changelog should contain all changes of a project and prosa text couldn't be as exactly than a list of solved bugs. Anyway, the only place where this file is shown for end users is the website which is really not very understandable or interesting for the users over there. It just shows that the project isn't dead :-) >From https://wl.widelands.org/ : > Widelands is currently (and will always be) under development - you can get a > feel for what is worked on by looking at the changelog. -- https://code.launchpad.net/~widelands-dev/widelands/changelog_license_date/+merge/283871 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/changelog_license_date into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/find_attack_soldiers into lp:widelands
> I do not feel like going over this and clean it up. I do not understand most > of the intentions. > > Martin, are you still interested to work on this? Otherwise I will drop this > branch in a few days. You can delete this branch, I had too much trouble with it. -- https://code.launchpad.net/~widelands-dev/widelands/find_attack_soldiers/+merge/245276 Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/find_attack_soldiers. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/changelog_license_date into lp:widelands
Continuous integration builds have changed state: Travis build 410. State: passed. Details: https://travis-ci.org/widelands/widelands/builds/104987273. Appveyor build 315. State: failed. Details: https://ci.appveyor.com/project/widelands-dev/widelands/build/_widelands_dev_widelands_changelog_license_date-315. -- https://code.launchpad.net/~widelands-dev/widelands/changelog_license_date/+merge/283871 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/changelog_license_date into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
Continuous integration builds have changed state: Travis build 402. State: passed. Details: https://travis-ci.org/widelands/widelands/builds/104850249. Appveyor build 309. State: success. Details: https://ci.appveyor.com/project/widelands-dev/widelands/build/_widelands_dev_widelands_bug_1526916-309. -- https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/bug-1526916. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/editor_help into lp:widelands
Continuous integration builds have changed state: Travis build 404. State: passed. Details: https://travis-ci.org/widelands/widelands/builds/104893035. Appveyor build 311. State: failed. Details: https://ci.appveyor.com/project/widelands-dev/widelands/build/_widelands_dev_widelands_editor_help-311. -- https://code.launchpad.net/~widelands-dev/widelands/editor_help/+merge/283900 Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/editor_help into lp:widelands. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/find_attack_soldiers into lp:widelands
Abandoning this then. -- https://code.launchpad.net/~widelands-dev/widelands/find_attack_soldiers/+merge/245276 Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/find_attack_soldiers. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/find_attack_soldiers into lp:widelands
The proposal to merge lp:~widelands-dev/widelands/find_attack_soldiers into lp:widelands has been updated. Status: Needs review => Rejected For more details, see: https://code.launchpad.net/~widelands-dev/widelands/find_attack_soldiers/+merge/245276 -- Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/find_attack_soldiers. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
Re: [Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
Review: Approve lgtm. @bunnybot merge -- https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/bug-1526916. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp
[Widelands-dev] [Merge] lp:~widelands-dev/widelands/bug-1526916 into lp:widelands
The proposal to merge lp:~widelands-dev/widelands/bug-1526916 into lp:widelands has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~widelands-dev/widelands/bug-1526916/+merge/283912 -- Your team Widelands Developers is subscribed to branch lp:~widelands-dev/widelands/bug-1526916. ___ Mailing list: https://launchpad.net/~widelands-dev Post to : widelands-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~widelands-dev More help : https://help.launchpad.net/ListHelp