├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.org ├── circle.yml ├── client ├── build.sbt ├── project │ └── plugin.sbt └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── ponkotuy │ │ │ └── http │ │ │ └── MFGKeyStore.java │ ├── resources │ │ ├── logback.xml │ │ ├── myfleetgirls-default.conf │ │ └── myfleetgirls.keystore │ └── scala │ │ └── com │ │ └── ponkotuy │ │ ├── config │ │ └── ClientConfig.scala │ │ ├── http │ │ ├── Host.scala │ │ ├── MFGHttp.scala │ │ ├── PostActor.scala │ │ └── RetryWithWait.scala │ │ ├── intercept │ │ ├── Interceptor.scala │ │ └── KCInterceptor.scala │ │ ├── parser │ │ ├── KCJson.scala │ │ ├── LazyAuthPost.scala │ │ └── Query.scala │ │ ├── proxy │ │ ├── AggregateContentFilters.scala │ │ ├── KCFiltersSource.scala │ │ ├── LittleProxy.scala │ │ └── LoggingActivityTracker.scala │ │ ├── restype │ │ ├── ApiStart2.scala │ │ ├── Basic.scala │ │ ├── CreateItem.scala │ │ ├── CreateShip.scala │ │ ├── Deck.scala │ │ ├── DeckPort.scala │ │ ├── FleetsState.scala │ │ ├── GetShip.scala │ │ ├── HenseiChange.scala │ │ ├── KDock.scala │ │ ├── LoginCheck.scala │ │ ├── MapInfo.scala │ │ ├── MapNext.scala │ │ ├── MapSWF.scala │ │ ├── MapStart.scala │ │ ├── Material.scala │ │ ├── NDock.scala │ │ ├── PictureBook.scala │ │ ├── Port.scala │ │ ├── PresetSelect.scala │ │ ├── QuestList.scala │ │ ├── RemodelSlot.scala │ │ ├── RemodelSlotlist.scala │ │ ├── RemodelSlotlistDetail.scala │ │ ├── RequireInfo.scala │ │ ├── ResType.scala │ │ ├── Result.scala │ │ ├── SelectEventmapRank.scala │ │ ├── Ship2.scala │ │ ├── Ship3.scala │ │ ├── ShipDeck.scala │ │ ├── ShipSWF.scala │ │ ├── SlotItem.scala │ │ ├── SortieBattleResult.scala │ │ └── SoundMP3.scala │ │ ├── run │ │ └── Main.scala │ │ └── util │ │ └── Log.scala │ └── test │ └── scala │ └── com │ └── ponkotuy │ └── restype │ ├── FleetStateSuite.scala │ └── FleetsStateSuite.scala ├── docker-compose.yml ├── docker └── db │ ├── Dockerfile │ └── enable-mroonga.sql ├── library ├── build.sbt └── src │ ├── main │ ├── resources │ │ └── kc-server.conf │ └── scala │ │ └── com │ │ └── ponkotuy │ │ ├── data │ │ ├── Auth.scala │ │ ├── Basic.scala │ │ ├── BattleResult.scala │ │ ├── Book.scala │ │ ├── CreateItem.scala │ │ ├── CreateShip.scala │ │ ├── CreateShipAndDock.scala │ │ ├── DeckPort.scala │ │ ├── DeleteKDock.scala │ │ ├── EventMapRank.scala │ │ ├── HenseiChange.scala │ │ ├── KDock.scala │ │ ├── MapInfo.scala │ │ ├── MapRoute.scala │ │ ├── MapStart.scala │ │ ├── Material.scala │ │ ├── MyFleetAuth.scala │ │ ├── NDock.scala │ │ ├── PresetSelect.scala │ │ ├── Quest.scala │ │ ├── Ranking.scala │ │ ├── Remodel.scala │ │ ├── RemodelSlotlist.scala │ │ ├── Ship.scala │ │ ├── SlotItem.scala │ │ └── master │ │ │ ├── MasterMission.scala │ │ │ ├── MasterRemodel.scala │ │ │ ├── MasterSType.scala │ │ │ ├── MasterShip.scala │ │ │ ├── MasterShipGraph.scala │ │ │ └── MasterSlotItem.scala │ │ ├── tool │ │ ├── Checksum.scala │ │ ├── DateFormatLocal.scala │ │ ├── DiffCalc.scala │ │ ├── PostQueryParser.scala │ │ ├── Pretty.scala │ │ ├── RankingDiff.scala │ │ └── TempFileTool.scala │ │ └── value │ │ ├── KCServer.scala │ │ └── ShipIds.scala │ └── test │ ├── resources │ ├── api_start2.json │ ├── combined_battle_result.json │ ├── item_book.json │ ├── mapinfo.json │ ├── preset_select.json │ ├── ranking.json │ ├── ship.json │ └── ship_book.json │ └── scala │ └── com │ └── ponkotuy │ └── data │ ├── BasicSuite.scala │ ├── BattleResultSuite.scala │ ├── BookSuite.scala │ ├── MapInfoSuite.scala │ ├── MasterRemodelSuite.scala │ ├── MasterShipSuite.scala │ ├── PresetSelectSuite.scala │ ├── RankingSuite.scala │ ├── RemodelSuite.scala │ └── ShipSuite.scala ├── maintenance └── hooks │ └── post-receive ├── package ├── README.org └── resources │ ├── IE_PROXY.REG │ ├── MyFleetGirls.bat │ ├── MyFleetGirls.command │ ├── MyFleetGirls.sh │ ├── README.txt │ └── application.conf.sample ├── profiler ├── build.sbt └── src │ └── main │ ├── resources │ └── application.conf.sample │ └── scala │ ├── Common.scala │ ├── DropStage.scala │ ├── ListVector.scala │ ├── Settings.scala │ ├── UserShip.scala │ ├── UserShipDB.scala │ └── UserShipPlay.scala ├── project ├── Build.scala ├── build.properties ├── plugin.sbt ├── project │ └── plugin.sbt └── scalikejdbc.properties.sample ├── server ├── .gitignore ├── README ├── app │ ├── assets │ │ ├── javascript │ │ │ ├── activities.coffee │ │ │ ├── admin.coffee │ │ │ ├── bar.coffee │ │ │ ├── coffeelint.json │ │ │ ├── common.coffee │ │ │ ├── create.coffee │ │ │ ├── delete_fav.coffee │ │ │ ├── dock.coffee │ │ │ ├── drop.coffee │ │ │ ├── edit_snap.coffee │ │ │ ├── fav.coffee │ │ │ ├── from_ship.coffee │ │ │ ├── graph.coffee │ │ │ ├── honor.coffee │ │ │ ├── index.coffee │ │ │ ├── login.coffee │ │ │ ├── map_image.coffee │ │ │ ├── material.coffee │ │ │ ├── mission.coffee │ │ │ ├── modal_ship.coffee │ │ │ ├── naval_battle.coffee │ │ │ ├── navbar.coffee │ │ │ ├── pie.coffee │ │ │ ├── quest.coffee │ │ │ ├── rader.coffee │ │ │ ├── ranking.coffee │ │ │ ├── register_snap.coffee │ │ │ ├── remodel.coffee │ │ │ ├── route.coffee │ │ │ ├── ship.coffee │ │ │ ├── ship_image_book.coffee │ │ │ ├── ship_list.coffee │ │ │ ├── snap_delete_pass.coffee │ │ │ ├── snapshot.coffee │ │ │ ├── st_ship_book.coffee │ │ │ ├── stacked_chart.coffee │ │ │ ├── statistics.coffee │ │ │ ├── time.coffee │ │ │ ├── user.coffee │ │ │ └── ws_user.coffee │ │ └── stylesheet │ │ │ └── common.less │ ├── controllers │ │ ├── Analytics.scala │ │ ├── Atom.scala │ │ ├── Common.scala │ │ ├── Fav.scala │ │ ├── MyAssets.scala │ │ ├── Post.scala │ │ ├── PostFile.scala │ │ ├── PostMaster.scala │ │ ├── Res.scala │ │ ├── Rest.scala │ │ ├── RestImage.scala │ │ ├── RestSound.scala │ │ ├── RestUser.scala │ │ ├── UserView.scala │ │ ├── View.scala │ │ ├── ViewAbout.scala │ │ ├── ViewSta.scala │ │ ├── WebPost.scala │ │ └── form │ │ │ └── SetSnapshotOrder.scala │ ├── filters │ │ └── Filters.scala │ ├── honor │ │ ├── AllClear.scala │ │ ├── Fetishism.scala │ │ ├── FleetAdmiral.scala │ │ ├── FleetGroup.scala │ │ ├── HasUsers.scala │ │ ├── HonorCache.scala │ │ ├── HonorCategory.scala │ │ ├── InitShip.scala │ │ ├── Lucky.scala │ │ ├── ManyShip.scala │ │ ├── Married.scala │ │ ├── Material.scala │ │ ├── NotHave.scala │ │ ├── Practice.scala │ │ ├── RankingTop.scala │ │ ├── Rookie.scala │ │ ├── ShipMaster.scala │ │ ├── ShipMaxLv.scala │ │ ├── ShipTypeBias.scala │ │ ├── SpecialDay.scala │ │ └── Yome.scala │ ├── models │ │ ├── atom │ │ │ ├── ActivitiesFeed.scala │ │ │ └── UserFeed.scala │ │ ├── db │ │ │ ├── AGOProgress.scala │ │ │ ├── Admiral.scala │ │ │ ├── AreaName.scala │ │ │ ├── Auth.scala │ │ │ ├── Basic.scala │ │ │ ├── BattleResult.scala │ │ │ ├── CalcScore.scala │ │ │ ├── CellInfo.scala │ │ │ ├── CellPosition.scala │ │ │ ├── CreateItem.scala │ │ │ ├── CreateShip.scala │ │ │ ├── DeckPort.scala │ │ │ ├── DeckShip.scala │ │ │ ├── DeckShipSnapshot.scala │ │ │ ├── DeckSnapshot.scala │ │ │ ├── Favorite.scala │ │ │ ├── FleetGroup.scala │ │ │ ├── FleetGroupMember.scala │ │ │ ├── Honor.scala │ │ │ ├── ItemBook.scala │ │ │ ├── ItemSnapshot.scala │ │ │ ├── KDock.scala │ │ │ ├── MapImage.scala │ │ │ ├── MapInfo.scala │ │ │ ├── MapRoute.scala │ │ │ ├── MasterMission.scala │ │ │ ├── MasterRemodel.scala │ │ │ ├── MasterShipAfter.scala │ │ │ ├── MasterShipBase.scala │ │ │ ├── MasterShipOther.scala │ │ │ ├── MasterShipSpecs.scala │ │ │ ├── MasterSlotItem.scala │ │ │ ├── MasterStype.scala │ │ │ ├── Material.scala │ │ │ ├── Mission.scala │ │ │ ├── MissionHistory.scala │ │ │ ├── MissionHistoryShip.scala │ │ │ ├── MyFleetAuth.scala │ │ │ ├── MyfleetRanking.scala │ │ │ ├── NDock.scala │ │ │ ├── Quest.scala │ │ │ ├── Ranking.scala │ │ │ ├── Remodel.scala │ │ │ ├── RemodelAfterSlot.scala │ │ │ ├── RemodelSlot.scala │ │ │ ├── SQLInterpolation.scala │ │ │ ├── Session.scala │ │ │ ├── Ship.scala │ │ │ ├── ShipBook.scala │ │ │ ├── ShipHistory.scala │ │ │ ├── ShipImage.scala │ │ │ ├── ShipSlotItem.scala │ │ │ ├── ShipSound.scala │ │ │ ├── SlotItem.scala │ │ │ ├── SnapshotText.scala │ │ │ ├── UserSettings.scala │ │ │ └── YomeShip.scala │ │ ├── join │ │ │ ├── Activity.scala │ │ │ ├── BattleResultWithCell.scala │ │ │ ├── BattleResultWithUser.scala │ │ │ ├── CShipWithAdmiral.scala │ │ │ ├── CellWithRank.scala │ │ │ ├── CreateItemWithName.scala │ │ │ ├── CreateShipWithName.scala │ │ │ ├── DeckShipWithName.scala │ │ │ ├── DeckSnapshotWithShip.scala │ │ │ ├── FleetGroupWithShip.scala │ │ │ ├── GraphData.scala │ │ │ ├── HonorWithAdmiral.scala │ │ │ ├── ItemWithShip.scala │ │ │ ├── KDockWithName.scala │ │ │ ├── MasterRemodelWithName.scala │ │ │ ├── MasterShipAll.scala │ │ │ ├── MasterShipWithStype.scala │ │ │ ├── Mat.scala │ │ │ ├── MiniShip.scala │ │ │ ├── MissionHistoryShipWithMaster.scala │ │ │ ├── MissionHistoryWithMaster.scala │ │ │ ├── MissionWithFlagship.scala │ │ │ ├── NDockWithName.scala │ │ │ ├── RemodelWithName.scala │ │ │ ├── RemodelWithShip.scala │ │ │ ├── RouteWithAdmiral.scala │ │ │ ├── ShipDrop.scala │ │ │ ├── ShipParameter.scala │ │ │ ├── ShipSnapshotWithName.scala │ │ │ ├── ShipWithAdmiral.scala │ │ │ ├── ShipWithFav.scala │ │ │ ├── ShipWithName.scala │ │ │ ├── ShipWithSpecs.scala │ │ │ ├── SlotItemWithMaster.scala │ │ │ ├── Stage.scala │ │ │ ├── User.scala │ │ │ ├── UserActivity.scala │ │ │ └── WithSlot.scala │ │ ├── other │ │ │ ├── MissionWithDeckId.scala │ │ │ └── ShipWithCondition.scala │ │ ├── query │ │ │ ├── Period.scala │ │ │ ├── ShipExpGroup.scala │ │ │ └── SnapshotSearch.scala │ │ ├── req │ │ │ ├── AllCrawlAPI.scala │ │ │ ├── AuthData.scala │ │ │ ├── DeleteSnapshot.scala │ │ │ ├── Diff.scala │ │ │ ├── FavPut.scala │ │ │ ├── MaterialDays.scala │ │ │ ├── PatchInvisible.scala │ │ │ ├── PatchManual.scala │ │ │ ├── RegisterSnapshot.scala │ │ │ ├── ScoreDays.scala │ │ │ ├── SetHonor.scala │ │ │ ├── Settings.scala │ │ │ └── UpdateSnapshot.scala │ │ ├── response │ │ │ ├── DropRate.scala │ │ │ ├── ScoreWithSum.scala │ │ │ └── ShipExps.scala │ │ └── view │ │ │ ├── CItem.scala │ │ │ ├── CShip.scala │ │ │ └── ShipBookCountByShip.scala │ ├── modules │ │ ├── MFGCron.scala │ │ └── cron │ │ │ ├── BasicRecordCutter.scala │ │ │ ├── CalcScoreInserter.scala │ │ │ ├── DailyQuestEraser.scala │ │ │ ├── MaterialRecordCutter.scala │ │ │ ├── MonthlyCalcScoreInserter.scala │ │ │ ├── MonthlyQuestEraser.scala │ │ │ ├── QuarterlyQuestEraser.scala │ │ │ ├── RankingInserter.scala │ │ │ ├── ShipHistoryCutter.scala │ │ │ └── WeeklyQuestEraser.scala │ ├── ranking │ │ ├── ExpByShipRanking.scala │ │ ├── FirstShipRanking.scala │ │ ├── FirstShipRate.scala │ │ ├── ItemBookRanking.scala │ │ ├── LastScoreRanking.scala │ │ ├── LuckRanking.scala │ │ ├── MarriedByShipRanking.scala │ │ ├── MarriedRanking.scala │ │ ├── MaterialRanking.scala │ │ ├── RareShipRanking.scala │ │ ├── RemodelRanking.scala │ │ ├── ScoreRanking.scala │ │ ├── ScoreRankingCommon.scala │ │ ├── ShipBookRanking.scala │ │ ├── ShipCommon.scala │ │ ├── SumShipExpRanking.scala │ │ ├── YomeByShipRanking.scala │ │ ├── common │ │ │ ├── EvolutionBase.scala │ │ │ ├── Ranking.scala │ │ │ ├── RankingElement.scala │ │ │ └── RankingType.scala │ │ └── data │ │ │ ├── Count.scala │ │ │ ├── CountWithSum.scala │ │ │ ├── Exp.scala │ │ │ ├── LuckData.scala │ │ │ ├── Score.scala │ │ │ └── ShipMini.scala │ ├── tool │ │ ├── AirSuperiority.scala │ │ ├── AntiAirCutin.scala │ │ ├── Authentication.scala │ │ ├── BattleScore.scala │ │ ├── Calc.scala │ │ ├── EquipType.scala │ │ ├── PlayProcessLogger.scala │ │ ├── STypeExp.scala │ │ ├── Settings.scala │ │ ├── ShipExperience.scala │ │ ├── StageInfo.scala │ │ └── swf │ │ │ ├── MapData.scala │ │ │ └── WrappedSWF.scala │ ├── util │ │ ├── Abdera.scala │ │ ├── Cron.scala │ │ ├── MFGDateUtil.scala │ │ ├── PeriodicalCache.scala │ │ ├── Ymdh.scala │ │ ├── abdera │ │ │ ├── Entriable.scala │ │ │ └── Feedable.scala │ │ ├── ehcache │ │ │ └── TimeToLiveCache.scala │ │ └── scalikejdbc │ │ │ ├── BulkInsert.scala │ │ │ └── ExtendedQueryDSLFeature.scala │ └── views │ │ ├── Js.scala │ │ ├── admin │ │ └── index.scala.html │ │ ├── index.scala.html │ │ ├── loading.scala.html │ │ ├── login.scala.html │ │ ├── main.scala.html │ │ ├── modal_map.scala.html │ │ ├── modal_map_line.scala.html │ │ ├── navbar.scala.html │ │ ├── proxy.scala.html │ │ ├── sta │ │ ├── activities.scala.html │ │ ├── citem.scala.html │ │ ├── cship.scala.html │ │ ├── drop.scala.html │ │ ├── drop_alpha.scala.html │ │ ├── drop_stage.scala.html │ │ ├── from_ship.scala.html │ │ ├── honor.scala.html │ │ ├── modal_ranking.scala.html │ │ ├── modal_route.scala.html │ │ ├── ranking.scala.html │ │ ├── remodel_slot.scala.html │ │ ├── route.scala.html │ │ ├── search_snap.scala.html │ │ ├── ship_book.scala.html │ │ ├── ship_list.scala.html │ │ ├── statistics.scala.html │ │ └── statistics_head.scala.html │ │ ├── tweet.scala.html │ │ └── user │ │ ├── book.scala.html │ │ ├── create.scala.html │ │ ├── create_paging.scala.html │ │ ├── dock.scala.html │ │ ├── favorite.scala.html │ │ ├── head_content.scala.html │ │ ├── honor.scala.html │ │ ├── material.scala.html │ │ ├── mission.scala.html │ │ ├── modal_fav.scala.html │ │ ├── modal_fleet.scala.html │ │ ├── modal_ship.scala.html │ │ ├── naval_battle.scala.html │ │ ├── quest.scala.html │ │ ├── register_snap.scala.html │ │ ├── ship.scala.html │ │ ├── ship_detail.scala.html │ │ ├── ship_image_book.scala.html │ │ ├── shipslotitem.scala.html │ │ ├── slotitem.scala.html │ │ ├── snap_delete_pass.scala.html │ │ ├── snapshot.scala.html │ │ ├── statistics.scala.html │ │ ├── user.scala.html │ │ └── usertab.scala.html ├── build.sbt ├── conf │ ├── application.conf │ ├── db │ │ └── migration │ │ │ └── default │ │ │ ├── V100__add_quest_manual_flag.sql │ │ │ ├── V101__recreate_ship_image.sql │ │ │ ├── V102__recreate_ship_sound.sql │ │ │ ├── V103__speedup_map_route.sql │ │ │ ├── V104__speedup_map_route.sql │ │ │ ├── V105__add_record_cell_info.sql │ │ │ ├── V106__create_cell_position.sql │ │ │ ├── V107__add_created_to_slot_item.sql │ │ │ ├── V108__add_record_cell_info.sql │ │ │ ├── V109__add_event_record.sql │ │ │ ├── V10__create_create_item.sql │ │ │ ├── V110__add_map_rank.sql │ │ │ ├── V111__add_map_rank_to_br.sql │ │ │ ├── V112__add_alv_to_slotitem.sql │ │ │ ├── V113__speedup_ship_history.sql │ │ │ ├── V114__set_primary.sql │ │ │ ├── V115__add_record_cell_info.sql │ │ │ ├── V116__add_event_record.sql │ │ │ ├── V117__fix_cell_info.sql │ │ │ ├── V118__speedup_battle_score.sql │ │ │ ├── V119__create_calc_score.sql │ │ │ ├── V11__create_master_slotitem.sql │ │ │ ├── V120__add_created_mapinfo.sql │ │ │ ├── V121__create_item_snapshot.sql │ │ │ ├── V122__create_myfleet_ranking.sql │ │ │ ├── V123__add_myfleet_ranking_index.sql │ │ │ ├── V124__add_event_record.sql │ │ │ ├── V125__add_record_cell_info.sql │ │ │ ├── V126__add_event_record.sql │ │ │ ├── V127__add_record_cell_info.sql │ │ │ ├── V128__fix_quest.sql │ │ │ ├── V129__add_event_record.sql │ │ │ ├── V12__create_ship_book.sql │ │ │ ├── V130__add_record_cell_info.sql │ │ │ ├── V131__add_record_cell_info.sql │ │ │ ├── V132__add_record_cell_info.sql │ │ │ ├── V133__add_event_data.sql │ │ │ ├── V134__add_cell_info.sql │ │ │ ├── V135__add_cell_info.sql │ │ │ ├── V136__add_unique_myfleet_ranking.sql │ │ │ ├── V137__event_record.sql │ │ │ ├── V138__add_cell_info.sql │ │ │ ├── V139__add_cell_info.sql │ │ │ ├── V13__create_item_book.sql │ │ │ ├── V140__fix_cell_info.sql │ │ │ ├── V141__add_quest_score.sql │ │ │ ├── V142__add_event_recort.sql │ │ │ ├── V143__add_cell_info.sql │ │ │ ├── V144__add_event_record.sql │ │ │ ├── V145__add_cell_info.sql │ │ │ ├── V146__add_cell_info.sql │ │ │ ├── V147__add_event_record.sql │ │ │ ├── V148__add_cell_info.sql │ │ │ ├── V149__expand_cell_info_alphabet.sql │ │ │ ├── V14__create_ship_image.sql │ │ │ ├── V150__add_cell_info.sql │ │ │ ├── V151__add_event_record.sql │ │ │ ├── V152__add_cell_info.sql │ │ │ ├── V153__add_cell_info.sql │ │ │ ├── V15__create_map_info.sql │ │ │ ├── V16__create_slot_item.sql │ │ │ ├── V17__create_ship_slot_item.sql │ │ │ ├── V18__fix_master_ship.sql │ │ │ ├── V19__create master_ship_extended.sql │ │ │ ├── V1__create.sql │ │ │ ├── V20__create_master_stype.sql │ │ │ ├── V21__add_unique_to_basic.sql │ │ │ ├── V22__create_ship_sound.sql │ │ │ ├── V23__create_map_route.sql │ │ │ ├── V24__create_battle_result.sql │ │ │ ├── V25__add_ship_column.sql │ │ │ ├── V26__add_filename_column.sql │ │ │ ├── V27__create_cell_info.sql │ │ │ ├── V28__add_record_cell_info.sql │ │ │ ├── V29__add_record_cell_info.sql │ │ │ ├── V2__mater_ship_create.sql │ │ │ ├── V30__create_quest.sql │ │ │ ├── V31__add_record_cell_info.sql │ │ │ ├── V32__add_record_cell_info.sql │ │ │ ├── V33__create_myfleet_auth.sql │ │ │ ├── V34__create_user_settings.sql │ │ │ ├── V35__add_record_cell_info.sql │ │ │ ├── V36__add_ship_book_column.sql │ │ │ ├── V37__add_user_settings_column.sql │ │ │ ├── V38__create_snapshot.sql │ │ │ ├── V39__create_session.sql │ │ │ ├── V3__create_ship.sql │ │ │ ├── V40__add_record_cell_info.sql │ │ │ ├── V41__add_record_cell_info.sql │ │ │ ├── V42__add_record_cell_info.sql │ │ │ ├── V43__add_record_cell_info.sql │ │ │ ├── V44__add_record_cell_info.sql │ │ │ ├── V45__delete_ctype.sql │ │ │ ├── V46__delete_master_ship_column.sql │ │ │ ├── V47__add_maxeq_specs.sql │ │ │ ├── V48__add_slotitem_level.sql │ │ │ ├── V49__add_revamping_material.sql │ │ │ ├── V4__create_ndock.sql │ │ │ ├── V50__create_remodel_slot.sql │ │ │ ├── V51__create_favorite.sql │ │ │ ├── V52__add_title_to_favorite.sql │ │ │ ├── V53__add_record_cell_info.sql │ │ │ ├── V54__add_record_cell_info.sql │ │ │ ├── V55__change_utf8_to_utf8mb4.sql │ │ │ ├── V56__add_swf_id.sql │ │ │ ├── V57__create_mission_history.sql │ │ │ ├── V58__create_mission_ship.sql │ │ │ ├── V59__create_remodel.sql │ │ │ ├── V5__create_admiral.sql │ │ │ ├── V60__create_yome_ship.sql │ │ │ ├── V61__add_unique_yome.sql │ │ │ ├── V62__add_record_cell_info.sql │ │ │ ├── V63__recreate_remodel.sql │ │ │ ├── V64__create_master_remodel.sql │ │ │ ├── V65__add_record_cell_info.sql │ │ │ ├── V66__add_record_cell_info.sql │ │ │ ├── V67__speedup_battle_result.sql │ │ │ ├── V68__create_master_area_name.sql │ │ │ ├── V69__add_area_name_record.sql │ │ │ ├── V6__create_create_ship.sql │ │ │ ├── V70__add_index_to_remodel.sql │ │ │ ├── V71__delete_column_slotitem_name.sql │ │ │ ├── V72__speedup_material.sql │ │ │ ├── V73__speedup_battle_result.sql │ │ │ ├── V74__add_medals.sql │ │ │ ├── V75__speedup_activities.sql │ │ │ ├── V76__speedup_deckship.sql │ │ │ ├── V77__speedup_battle_result_history.sql │ │ │ ├── V78__add_ago_progress.sql │ │ │ ├── V79__create_honor.sql │ │ │ ├── V7__create_kdock.sql │ │ │ ├── V80__create_fleet_group.sql │ │ │ ├── V81__add_record_fleet_group.sql │ │ │ ├── V82__add_record_fleet_group.sql │ │ │ ├── V83__master_remodel_change_primary.sql │ │ │ ├── V84__snapshot_text.sql │ │ │ ├── V85__add_created_to_snapshot.sql │ │ │ ├── V86__add_snapshot_order.sql │ │ │ ├── V87__add_record_fleet_group.sql │ │ │ ├── V88__add_index_honor_name.sql │ │ │ ├── V89__add_Basic_column.sql │ │ │ ├── V8__create_deck_port.sql │ │ │ ├── V90__create_ranking.sql │ │ │ ├── V91__add_create_first_ship.sql │ │ │ ├── V92__add_record_cell_info.sql │ │ │ ├── V93__speedup_map_route.sql │ │ │ ├── V94__add_event_record.sql │ │ │ ├── V95__add_record_cell_info.sql │ │ │ ├── V96__add_record_cell_info.sql │ │ │ ├── V97__add_record_cell_info.sql │ │ │ ├── V98__add_invisible_to_honor.sql │ │ │ ├── V99__create_ship_history.sql │ │ │ └── V9__create_master_mission.sql │ ├── ehcache.xml │ ├── local.conf.sample │ ├── logback.xml │ └── routes ├── lib │ └── .keep ├── public │ ├── client │ │ ├── .gitkeep │ │ ├── IE_PROXY.REG │ │ └── myfleetgirls-licenses.html │ ├── javascript │ │ ├── analytics.js │ │ └── lib │ │ │ ├── jquery.flot.axislabels.js │ │ │ ├── sunburst.js │ │ │ ├── swiftIQSunburstChart.min.js │ │ │ └── utility.min.js │ ├── stylesheet │ │ ├── loading.css │ │ └── sunburst.css │ └── zip │ │ └── .gitkeep └── test │ ├── ShipExperienceSuite.scala │ ├── honor │ └── HonorsSuite.scala │ ├── models │ └── query │ │ └── PeriodSuite.scala │ ├── ranking │ └── common │ │ └── RankingElementSuite.scala │ └── util │ ├── MFGDateUtilSuite.scala │ └── YmdhSuite.scala ├── tester ├── README.org ├── build.sbt └── src │ └── main │ ├── resources │ └── urls │ └── scala │ └── com │ └── ponkotuy │ └── run │ └── Tester.scala └── update ├── build.sbt ├── myfleetgirls.keystore ├── project └── plugin.sbt ├── src └── main │ └── java │ ├── Connection.java │ ├── MFGKeyStore.java │ └── Main.java └── update.properties /.dockerignore: -------------------------------------------------------------------------------- 1 | .idea 2 | **/target 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/README.org -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/circle.yml -------------------------------------------------------------------------------- /client/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/build.sbt -------------------------------------------------------------------------------- /client/project/plugin.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/project/plugin.sbt -------------------------------------------------------------------------------- /client/src/main/java/com/ponkotuy/http/MFGKeyStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/java/com/ponkotuy/http/MFGKeyStore.java -------------------------------------------------------------------------------- /client/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/resources/logback.xml -------------------------------------------------------------------------------- /client/src/main/resources/myfleetgirls-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/resources/myfleetgirls-default.conf -------------------------------------------------------------------------------- /client/src/main/resources/myfleetgirls.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/resources/myfleetgirls.keystore -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/config/ClientConfig.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/config/ClientConfig.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/http/Host.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/http/Host.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/http/MFGHttp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/http/MFGHttp.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/http/PostActor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/http/PostActor.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/http/RetryWithWait.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/http/RetryWithWait.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/intercept/Interceptor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/intercept/Interceptor.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/intercept/KCInterceptor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/intercept/KCInterceptor.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/parser/KCJson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/parser/KCJson.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/parser/LazyAuthPost.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/parser/LazyAuthPost.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/parser/Query.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/parser/Query.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/proxy/AggregateContentFilters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/proxy/AggregateContentFilters.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/proxy/KCFiltersSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/proxy/KCFiltersSource.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/proxy/LittleProxy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/proxy/LittleProxy.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/proxy/LoggingActivityTracker.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/proxy/LoggingActivityTracker.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/ApiStart2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/ApiStart2.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Basic.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Basic.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/CreateItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/CreateItem.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/CreateShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/CreateShip.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Deck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Deck.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/DeckPort.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/DeckPort.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/FleetsState.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/FleetsState.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/GetShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/GetShip.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/HenseiChange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/HenseiChange.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/KDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/KDock.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/LoginCheck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/LoginCheck.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/MapInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/MapInfo.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/MapNext.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/MapNext.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/MapSWF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/MapSWF.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/MapStart.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/MapStart.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Material.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Material.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/NDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/NDock.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/PictureBook.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/PictureBook.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Port.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Port.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/PresetSelect.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/PresetSelect.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/QuestList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/QuestList.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/RemodelSlot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/RemodelSlot.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/RemodelSlotlist.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/RemodelSlotlist.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/RemodelSlotlistDetail.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/RemodelSlotlistDetail.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/RequireInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/RequireInfo.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/ResType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/ResType.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Result.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Result.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/SelectEventmapRank.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/SelectEventmapRank.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Ship2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Ship2.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/Ship3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/Ship3.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/ShipDeck.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/ShipDeck.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/ShipSWF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/ShipSWF.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/SlotItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/SlotItem.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/SortieBattleResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/SortieBattleResult.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/restype/SoundMP3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/restype/SoundMP3.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/run/Main.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/run/Main.scala -------------------------------------------------------------------------------- /client/src/main/scala/com/ponkotuy/util/Log.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/main/scala/com/ponkotuy/util/Log.scala -------------------------------------------------------------------------------- /client/src/test/scala/com/ponkotuy/restype/FleetStateSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/test/scala/com/ponkotuy/restype/FleetStateSuite.scala -------------------------------------------------------------------------------- /client/src/test/scala/com/ponkotuy/restype/FleetsStateSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/client/src/test/scala/com/ponkotuy/restype/FleetsStateSuite.scala -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/db/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM mariadb:10 2 | MAINTAINER web@ponkotuy.com 3 | 4 | COPY enable-mroonga.sql /docker-entrypoint-initdb.d/ 5 | -------------------------------------------------------------------------------- /docker/db/enable-mroonga.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/docker/db/enable-mroonga.sql -------------------------------------------------------------------------------- /library/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/build.sbt -------------------------------------------------------------------------------- /library/src/main/resources/kc-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/resources/kc-server.conf -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Auth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Auth.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Basic.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Basic.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/BattleResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/BattleResult.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Book.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Book.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/CreateItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/CreateItem.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/CreateShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/CreateShip.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/CreateShipAndDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/CreateShipAndDock.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/DeckPort.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/DeckPort.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/DeleteKDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/DeleteKDock.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/EventMapRank.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/EventMapRank.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/HenseiChange.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/HenseiChange.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/KDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/KDock.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/MapInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/MapInfo.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/MapRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/MapRoute.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/MapStart.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/MapStart.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Material.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Material.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/MyFleetAuth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/MyFleetAuth.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/NDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/NDock.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/PresetSelect.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/PresetSelect.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Quest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Quest.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Ranking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Ranking.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Remodel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Remodel.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/RemodelSlotlist.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/RemodelSlotlist.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/Ship.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/Ship.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/SlotItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/SlotItem.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/master/MasterMission.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/master/MasterMission.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/master/MasterRemodel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/master/MasterRemodel.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/master/MasterSType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/master/MasterSType.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/master/MasterShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/master/MasterShip.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/master/MasterShipGraph.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/master/MasterShipGraph.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/data/master/MasterSlotItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/data/master/MasterSlotItem.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/Checksum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/Checksum.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/DateFormatLocal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/DateFormatLocal.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/DiffCalc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/DiffCalc.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/PostQueryParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/PostQueryParser.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/Pretty.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/Pretty.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/RankingDiff.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/RankingDiff.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/tool/TempFileTool.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/tool/TempFileTool.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/value/KCServer.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/value/KCServer.scala -------------------------------------------------------------------------------- /library/src/main/scala/com/ponkotuy/value/ShipIds.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/main/scala/com/ponkotuy/value/ShipIds.scala -------------------------------------------------------------------------------- /library/src/test/resources/api_start2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/api_start2.json -------------------------------------------------------------------------------- /library/src/test/resources/combined_battle_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/combined_battle_result.json -------------------------------------------------------------------------------- /library/src/test/resources/item_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/item_book.json -------------------------------------------------------------------------------- /library/src/test/resources/mapinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/mapinfo.json -------------------------------------------------------------------------------- /library/src/test/resources/preset_select.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/preset_select.json -------------------------------------------------------------------------------- /library/src/test/resources/ranking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/ranking.json -------------------------------------------------------------------------------- /library/src/test/resources/ship.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/ship.json -------------------------------------------------------------------------------- /library/src/test/resources/ship_book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/resources/ship_book.json -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/BasicSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/BasicSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/BattleResultSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/BattleResultSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/BookSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/BookSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/MapInfoSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/MapInfoSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/MasterRemodelSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/MasterRemodelSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/MasterShipSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/MasterShipSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/PresetSelectSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/PresetSelectSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/RankingSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/RankingSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/RemodelSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/RemodelSuite.scala -------------------------------------------------------------------------------- /library/src/test/scala/com/ponkotuy/data/ShipSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/library/src/test/scala/com/ponkotuy/data/ShipSuite.scala -------------------------------------------------------------------------------- /maintenance/hooks/post-receive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/maintenance/hooks/post-receive -------------------------------------------------------------------------------- /package/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/README.org -------------------------------------------------------------------------------- /package/resources/IE_PROXY.REG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/resources/IE_PROXY.REG -------------------------------------------------------------------------------- /package/resources/MyFleetGirls.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/resources/MyFleetGirls.bat -------------------------------------------------------------------------------- /package/resources/MyFleetGirls.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/resources/MyFleetGirls.command -------------------------------------------------------------------------------- /package/resources/MyFleetGirls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/resources/MyFleetGirls.sh -------------------------------------------------------------------------------- /package/resources/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/resources/README.txt -------------------------------------------------------------------------------- /package/resources/application.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/package/resources/application.conf.sample -------------------------------------------------------------------------------- /profiler/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/build.sbt -------------------------------------------------------------------------------- /profiler/src/main/resources/application.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/resources/application.conf.sample -------------------------------------------------------------------------------- /profiler/src/main/scala/Common.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/Common.scala -------------------------------------------------------------------------------- /profiler/src/main/scala/DropStage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/DropStage.scala -------------------------------------------------------------------------------- /profiler/src/main/scala/ListVector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/ListVector.scala -------------------------------------------------------------------------------- /profiler/src/main/scala/Settings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/Settings.scala -------------------------------------------------------------------------------- /profiler/src/main/scala/UserShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/UserShip.scala -------------------------------------------------------------------------------- /profiler/src/main/scala/UserShipDB.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/UserShipDB.scala -------------------------------------------------------------------------------- /profiler/src/main/scala/UserShipPlay.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/profiler/src/main/scala/UserShipPlay.scala -------------------------------------------------------------------------------- /project/Build.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/project/Build.scala -------------------------------------------------------------------------------- /project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version = 0.13.13 2 | -------------------------------------------------------------------------------- /project/plugin.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/project/plugin.sbt -------------------------------------------------------------------------------- /project/project/plugin.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/project/project/plugin.sbt -------------------------------------------------------------------------------- /project/scalikejdbc.properties.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/project/scalikejdbc.properties.sample -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/README -------------------------------------------------------------------------------- /server/app/assets/javascript/activities.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/activities.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/admin.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/admin.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/bar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/bar.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/coffeelint.json -------------------------------------------------------------------------------- /server/app/assets/javascript/common.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/common.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/create.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/create.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/delete_fav.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/delete_fav.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/dock.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/dock.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/drop.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/drop.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/edit_snap.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/edit_snap.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/fav.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/fav.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/from_ship.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/from_ship.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/graph.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/graph.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/honor.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/honor.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/index.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/login.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/login.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/map_image.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/map_image.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/material.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/material.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/mission.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/mission.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/modal_ship.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/modal_ship.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/naval_battle.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/naval_battle.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/navbar.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/navbar.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/pie.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/pie.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/quest.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/quest.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/rader.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/rader.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/ranking.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/ranking.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/register_snap.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/register_snap.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/remodel.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/remodel.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/route.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/route.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/ship.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/ship.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/ship_image_book.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/ship_image_book.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/ship_list.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/ship_list.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/snap_delete_pass.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/snap_delete_pass.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/snapshot.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/snapshot.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/st_ship_book.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/st_ship_book.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/stacked_chart.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/stacked_chart.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/statistics.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/statistics.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/time.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/time.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/user.coffee -------------------------------------------------------------------------------- /server/app/assets/javascript/ws_user.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/javascript/ws_user.coffee -------------------------------------------------------------------------------- /server/app/assets/stylesheet/common.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/assets/stylesheet/common.less -------------------------------------------------------------------------------- /server/app/controllers/Analytics.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Analytics.scala -------------------------------------------------------------------------------- /server/app/controllers/Atom.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Atom.scala -------------------------------------------------------------------------------- /server/app/controllers/Common.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Common.scala -------------------------------------------------------------------------------- /server/app/controllers/Fav.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Fav.scala -------------------------------------------------------------------------------- /server/app/controllers/MyAssets.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/MyAssets.scala -------------------------------------------------------------------------------- /server/app/controllers/Post.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Post.scala -------------------------------------------------------------------------------- /server/app/controllers/PostFile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/PostFile.scala -------------------------------------------------------------------------------- /server/app/controllers/PostMaster.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/PostMaster.scala -------------------------------------------------------------------------------- /server/app/controllers/Res.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Res.scala -------------------------------------------------------------------------------- /server/app/controllers/Rest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/Rest.scala -------------------------------------------------------------------------------- /server/app/controllers/RestImage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/RestImage.scala -------------------------------------------------------------------------------- /server/app/controllers/RestSound.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/RestSound.scala -------------------------------------------------------------------------------- /server/app/controllers/RestUser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/RestUser.scala -------------------------------------------------------------------------------- /server/app/controllers/UserView.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/UserView.scala -------------------------------------------------------------------------------- /server/app/controllers/View.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/View.scala -------------------------------------------------------------------------------- /server/app/controllers/ViewAbout.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/ViewAbout.scala -------------------------------------------------------------------------------- /server/app/controllers/ViewSta.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/ViewSta.scala -------------------------------------------------------------------------------- /server/app/controllers/WebPost.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/WebPost.scala -------------------------------------------------------------------------------- /server/app/controllers/form/SetSnapshotOrder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/controllers/form/SetSnapshotOrder.scala -------------------------------------------------------------------------------- /server/app/filters/Filters.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/filters/Filters.scala -------------------------------------------------------------------------------- /server/app/honor/AllClear.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/AllClear.scala -------------------------------------------------------------------------------- /server/app/honor/Fetishism.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Fetishism.scala -------------------------------------------------------------------------------- /server/app/honor/FleetAdmiral.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/FleetAdmiral.scala -------------------------------------------------------------------------------- /server/app/honor/FleetGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/FleetGroup.scala -------------------------------------------------------------------------------- /server/app/honor/HasUsers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/HasUsers.scala -------------------------------------------------------------------------------- /server/app/honor/HonorCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/HonorCache.scala -------------------------------------------------------------------------------- /server/app/honor/HonorCategory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/HonorCategory.scala -------------------------------------------------------------------------------- /server/app/honor/InitShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/InitShip.scala -------------------------------------------------------------------------------- /server/app/honor/Lucky.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Lucky.scala -------------------------------------------------------------------------------- /server/app/honor/ManyShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/ManyShip.scala -------------------------------------------------------------------------------- /server/app/honor/Married.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Married.scala -------------------------------------------------------------------------------- /server/app/honor/Material.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Material.scala -------------------------------------------------------------------------------- /server/app/honor/NotHave.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/NotHave.scala -------------------------------------------------------------------------------- /server/app/honor/Practice.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Practice.scala -------------------------------------------------------------------------------- /server/app/honor/RankingTop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/RankingTop.scala -------------------------------------------------------------------------------- /server/app/honor/Rookie.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Rookie.scala -------------------------------------------------------------------------------- /server/app/honor/ShipMaster.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/ShipMaster.scala -------------------------------------------------------------------------------- /server/app/honor/ShipMaxLv.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/ShipMaxLv.scala -------------------------------------------------------------------------------- /server/app/honor/ShipTypeBias.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/ShipTypeBias.scala -------------------------------------------------------------------------------- /server/app/honor/SpecialDay.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/SpecialDay.scala -------------------------------------------------------------------------------- /server/app/honor/Yome.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/honor/Yome.scala -------------------------------------------------------------------------------- /server/app/models/atom/ActivitiesFeed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/atom/ActivitiesFeed.scala -------------------------------------------------------------------------------- /server/app/models/atom/UserFeed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/atom/UserFeed.scala -------------------------------------------------------------------------------- /server/app/models/db/AGOProgress.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/AGOProgress.scala -------------------------------------------------------------------------------- /server/app/models/db/Admiral.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Admiral.scala -------------------------------------------------------------------------------- /server/app/models/db/AreaName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/AreaName.scala -------------------------------------------------------------------------------- /server/app/models/db/Auth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Auth.scala -------------------------------------------------------------------------------- /server/app/models/db/Basic.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Basic.scala -------------------------------------------------------------------------------- /server/app/models/db/BattleResult.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/BattleResult.scala -------------------------------------------------------------------------------- /server/app/models/db/CalcScore.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/CalcScore.scala -------------------------------------------------------------------------------- /server/app/models/db/CellInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/CellInfo.scala -------------------------------------------------------------------------------- /server/app/models/db/CellPosition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/CellPosition.scala -------------------------------------------------------------------------------- /server/app/models/db/CreateItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/CreateItem.scala -------------------------------------------------------------------------------- /server/app/models/db/CreateShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/CreateShip.scala -------------------------------------------------------------------------------- /server/app/models/db/DeckPort.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/DeckPort.scala -------------------------------------------------------------------------------- /server/app/models/db/DeckShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/DeckShip.scala -------------------------------------------------------------------------------- /server/app/models/db/DeckShipSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/DeckShipSnapshot.scala -------------------------------------------------------------------------------- /server/app/models/db/DeckSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/DeckSnapshot.scala -------------------------------------------------------------------------------- /server/app/models/db/Favorite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Favorite.scala -------------------------------------------------------------------------------- /server/app/models/db/FleetGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/FleetGroup.scala -------------------------------------------------------------------------------- /server/app/models/db/FleetGroupMember.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/FleetGroupMember.scala -------------------------------------------------------------------------------- /server/app/models/db/Honor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Honor.scala -------------------------------------------------------------------------------- /server/app/models/db/ItemBook.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ItemBook.scala -------------------------------------------------------------------------------- /server/app/models/db/ItemSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ItemSnapshot.scala -------------------------------------------------------------------------------- /server/app/models/db/KDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/KDock.scala -------------------------------------------------------------------------------- /server/app/models/db/MapImage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MapImage.scala -------------------------------------------------------------------------------- /server/app/models/db/MapInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MapInfo.scala -------------------------------------------------------------------------------- /server/app/models/db/MapRoute.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MapRoute.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterMission.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterMission.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterRemodel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterRemodel.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterShipAfter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterShipAfter.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterShipBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterShipBase.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterShipOther.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterShipOther.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterShipSpecs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterShipSpecs.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterSlotItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterSlotItem.scala -------------------------------------------------------------------------------- /server/app/models/db/MasterStype.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MasterStype.scala -------------------------------------------------------------------------------- /server/app/models/db/Material.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Material.scala -------------------------------------------------------------------------------- /server/app/models/db/Mission.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Mission.scala -------------------------------------------------------------------------------- /server/app/models/db/MissionHistory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MissionHistory.scala -------------------------------------------------------------------------------- /server/app/models/db/MissionHistoryShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MissionHistoryShip.scala -------------------------------------------------------------------------------- /server/app/models/db/MyFleetAuth.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MyFleetAuth.scala -------------------------------------------------------------------------------- /server/app/models/db/MyfleetRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/MyfleetRanking.scala -------------------------------------------------------------------------------- /server/app/models/db/NDock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/NDock.scala -------------------------------------------------------------------------------- /server/app/models/db/Quest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Quest.scala -------------------------------------------------------------------------------- /server/app/models/db/Ranking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Ranking.scala -------------------------------------------------------------------------------- /server/app/models/db/Remodel.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Remodel.scala -------------------------------------------------------------------------------- /server/app/models/db/RemodelAfterSlot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/RemodelAfterSlot.scala -------------------------------------------------------------------------------- /server/app/models/db/RemodelSlot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/RemodelSlot.scala -------------------------------------------------------------------------------- /server/app/models/db/SQLInterpolation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/SQLInterpolation.scala -------------------------------------------------------------------------------- /server/app/models/db/Session.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Session.scala -------------------------------------------------------------------------------- /server/app/models/db/Ship.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/Ship.scala -------------------------------------------------------------------------------- /server/app/models/db/ShipBook.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ShipBook.scala -------------------------------------------------------------------------------- /server/app/models/db/ShipHistory.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ShipHistory.scala -------------------------------------------------------------------------------- /server/app/models/db/ShipImage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ShipImage.scala -------------------------------------------------------------------------------- /server/app/models/db/ShipSlotItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ShipSlotItem.scala -------------------------------------------------------------------------------- /server/app/models/db/ShipSound.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/ShipSound.scala -------------------------------------------------------------------------------- /server/app/models/db/SlotItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/SlotItem.scala -------------------------------------------------------------------------------- /server/app/models/db/SnapshotText.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/SnapshotText.scala -------------------------------------------------------------------------------- /server/app/models/db/UserSettings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/UserSettings.scala -------------------------------------------------------------------------------- /server/app/models/db/YomeShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/db/YomeShip.scala -------------------------------------------------------------------------------- /server/app/models/join/Activity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/Activity.scala -------------------------------------------------------------------------------- /server/app/models/join/BattleResultWithCell.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/BattleResultWithCell.scala -------------------------------------------------------------------------------- /server/app/models/join/BattleResultWithUser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/BattleResultWithUser.scala -------------------------------------------------------------------------------- /server/app/models/join/CShipWithAdmiral.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/CShipWithAdmiral.scala -------------------------------------------------------------------------------- /server/app/models/join/CellWithRank.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/CellWithRank.scala -------------------------------------------------------------------------------- /server/app/models/join/CreateItemWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/CreateItemWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/CreateShipWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/CreateShipWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/DeckShipWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/DeckShipWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/DeckSnapshotWithShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/DeckSnapshotWithShip.scala -------------------------------------------------------------------------------- /server/app/models/join/FleetGroupWithShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/FleetGroupWithShip.scala -------------------------------------------------------------------------------- /server/app/models/join/GraphData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/GraphData.scala -------------------------------------------------------------------------------- /server/app/models/join/HonorWithAdmiral.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/HonorWithAdmiral.scala -------------------------------------------------------------------------------- /server/app/models/join/ItemWithShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ItemWithShip.scala -------------------------------------------------------------------------------- /server/app/models/join/KDockWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/KDockWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/MasterRemodelWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MasterRemodelWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/MasterShipAll.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MasterShipAll.scala -------------------------------------------------------------------------------- /server/app/models/join/MasterShipWithStype.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MasterShipWithStype.scala -------------------------------------------------------------------------------- /server/app/models/join/Mat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/Mat.scala -------------------------------------------------------------------------------- /server/app/models/join/MiniShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MiniShip.scala -------------------------------------------------------------------------------- /server/app/models/join/MissionHistoryShipWithMaster.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MissionHistoryShipWithMaster.scala -------------------------------------------------------------------------------- /server/app/models/join/MissionHistoryWithMaster.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MissionHistoryWithMaster.scala -------------------------------------------------------------------------------- /server/app/models/join/MissionWithFlagship.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/MissionWithFlagship.scala -------------------------------------------------------------------------------- /server/app/models/join/NDockWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/NDockWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/RemodelWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/RemodelWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/RemodelWithShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/RemodelWithShip.scala -------------------------------------------------------------------------------- /server/app/models/join/RouteWithAdmiral.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/RouteWithAdmiral.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipDrop.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipDrop.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipParameter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipParameter.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipSnapshotWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipSnapshotWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipWithAdmiral.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipWithAdmiral.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipWithFav.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipWithFav.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipWithName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipWithName.scala -------------------------------------------------------------------------------- /server/app/models/join/ShipWithSpecs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/ShipWithSpecs.scala -------------------------------------------------------------------------------- /server/app/models/join/SlotItemWithMaster.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/SlotItemWithMaster.scala -------------------------------------------------------------------------------- /server/app/models/join/Stage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/Stage.scala -------------------------------------------------------------------------------- /server/app/models/join/User.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/User.scala -------------------------------------------------------------------------------- /server/app/models/join/UserActivity.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/UserActivity.scala -------------------------------------------------------------------------------- /server/app/models/join/WithSlot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/join/WithSlot.scala -------------------------------------------------------------------------------- /server/app/models/other/MissionWithDeckId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/other/MissionWithDeckId.scala -------------------------------------------------------------------------------- /server/app/models/other/ShipWithCondition.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/other/ShipWithCondition.scala -------------------------------------------------------------------------------- /server/app/models/query/Period.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/query/Period.scala -------------------------------------------------------------------------------- /server/app/models/query/ShipExpGroup.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/query/ShipExpGroup.scala -------------------------------------------------------------------------------- /server/app/models/query/SnapshotSearch.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/query/SnapshotSearch.scala -------------------------------------------------------------------------------- /server/app/models/req/AllCrawlAPI.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/AllCrawlAPI.scala -------------------------------------------------------------------------------- /server/app/models/req/AuthData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/AuthData.scala -------------------------------------------------------------------------------- /server/app/models/req/DeleteSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/DeleteSnapshot.scala -------------------------------------------------------------------------------- /server/app/models/req/Diff.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/Diff.scala -------------------------------------------------------------------------------- /server/app/models/req/FavPut.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/FavPut.scala -------------------------------------------------------------------------------- /server/app/models/req/MaterialDays.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/MaterialDays.scala -------------------------------------------------------------------------------- /server/app/models/req/PatchInvisible.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/PatchInvisible.scala -------------------------------------------------------------------------------- /server/app/models/req/PatchManual.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/PatchManual.scala -------------------------------------------------------------------------------- /server/app/models/req/RegisterSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/RegisterSnapshot.scala -------------------------------------------------------------------------------- /server/app/models/req/ScoreDays.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/ScoreDays.scala -------------------------------------------------------------------------------- /server/app/models/req/SetHonor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/SetHonor.scala -------------------------------------------------------------------------------- /server/app/models/req/Settings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/Settings.scala -------------------------------------------------------------------------------- /server/app/models/req/UpdateSnapshot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/req/UpdateSnapshot.scala -------------------------------------------------------------------------------- /server/app/models/response/DropRate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/response/DropRate.scala -------------------------------------------------------------------------------- /server/app/models/response/ScoreWithSum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/response/ScoreWithSum.scala -------------------------------------------------------------------------------- /server/app/models/response/ShipExps.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/response/ShipExps.scala -------------------------------------------------------------------------------- /server/app/models/view/CItem.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/view/CItem.scala -------------------------------------------------------------------------------- /server/app/models/view/CShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/view/CShip.scala -------------------------------------------------------------------------------- /server/app/models/view/ShipBookCountByShip.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/models/view/ShipBookCountByShip.scala -------------------------------------------------------------------------------- /server/app/modules/MFGCron.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/MFGCron.scala -------------------------------------------------------------------------------- /server/app/modules/cron/BasicRecordCutter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/BasicRecordCutter.scala -------------------------------------------------------------------------------- /server/app/modules/cron/CalcScoreInserter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/CalcScoreInserter.scala -------------------------------------------------------------------------------- /server/app/modules/cron/DailyQuestEraser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/DailyQuestEraser.scala -------------------------------------------------------------------------------- /server/app/modules/cron/MaterialRecordCutter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/MaterialRecordCutter.scala -------------------------------------------------------------------------------- /server/app/modules/cron/MonthlyCalcScoreInserter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/MonthlyCalcScoreInserter.scala -------------------------------------------------------------------------------- /server/app/modules/cron/MonthlyQuestEraser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/MonthlyQuestEraser.scala -------------------------------------------------------------------------------- /server/app/modules/cron/QuarterlyQuestEraser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/QuarterlyQuestEraser.scala -------------------------------------------------------------------------------- /server/app/modules/cron/RankingInserter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/RankingInserter.scala -------------------------------------------------------------------------------- /server/app/modules/cron/ShipHistoryCutter.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/ShipHistoryCutter.scala -------------------------------------------------------------------------------- /server/app/modules/cron/WeeklyQuestEraser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/modules/cron/WeeklyQuestEraser.scala -------------------------------------------------------------------------------- /server/app/ranking/ExpByShipRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/ExpByShipRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/FirstShipRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/FirstShipRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/FirstShipRate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/FirstShipRate.scala -------------------------------------------------------------------------------- /server/app/ranking/ItemBookRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/ItemBookRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/LastScoreRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/LastScoreRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/LuckRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/LuckRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/MarriedByShipRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/MarriedByShipRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/MarriedRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/MarriedRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/MaterialRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/MaterialRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/RareShipRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/RareShipRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/RemodelRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/RemodelRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/ScoreRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/ScoreRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/ScoreRankingCommon.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/ScoreRankingCommon.scala -------------------------------------------------------------------------------- /server/app/ranking/ShipBookRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/ShipBookRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/ShipCommon.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/ShipCommon.scala -------------------------------------------------------------------------------- /server/app/ranking/SumShipExpRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/SumShipExpRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/YomeByShipRanking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/YomeByShipRanking.scala -------------------------------------------------------------------------------- /server/app/ranking/common/EvolutionBase.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/common/EvolutionBase.scala -------------------------------------------------------------------------------- /server/app/ranking/common/Ranking.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/common/Ranking.scala -------------------------------------------------------------------------------- /server/app/ranking/common/RankingElement.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/common/RankingElement.scala -------------------------------------------------------------------------------- /server/app/ranking/common/RankingType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/common/RankingType.scala -------------------------------------------------------------------------------- /server/app/ranking/data/Count.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/data/Count.scala -------------------------------------------------------------------------------- /server/app/ranking/data/CountWithSum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/data/CountWithSum.scala -------------------------------------------------------------------------------- /server/app/ranking/data/Exp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/data/Exp.scala -------------------------------------------------------------------------------- /server/app/ranking/data/LuckData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/data/LuckData.scala -------------------------------------------------------------------------------- /server/app/ranking/data/Score.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/data/Score.scala -------------------------------------------------------------------------------- /server/app/ranking/data/ShipMini.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/ranking/data/ShipMini.scala -------------------------------------------------------------------------------- /server/app/tool/AirSuperiority.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/AirSuperiority.scala -------------------------------------------------------------------------------- /server/app/tool/AntiAirCutin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/AntiAirCutin.scala -------------------------------------------------------------------------------- /server/app/tool/Authentication.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/Authentication.scala -------------------------------------------------------------------------------- /server/app/tool/BattleScore.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/BattleScore.scala -------------------------------------------------------------------------------- /server/app/tool/Calc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/Calc.scala -------------------------------------------------------------------------------- /server/app/tool/EquipType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/EquipType.scala -------------------------------------------------------------------------------- /server/app/tool/PlayProcessLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/PlayProcessLogger.scala -------------------------------------------------------------------------------- /server/app/tool/STypeExp.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/STypeExp.scala -------------------------------------------------------------------------------- /server/app/tool/Settings.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/Settings.scala -------------------------------------------------------------------------------- /server/app/tool/ShipExperience.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/ShipExperience.scala -------------------------------------------------------------------------------- /server/app/tool/StageInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/StageInfo.scala -------------------------------------------------------------------------------- /server/app/tool/swf/MapData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/swf/MapData.scala -------------------------------------------------------------------------------- /server/app/tool/swf/WrappedSWF.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/tool/swf/WrappedSWF.scala -------------------------------------------------------------------------------- /server/app/util/Abdera.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/Abdera.scala -------------------------------------------------------------------------------- /server/app/util/Cron.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/Cron.scala -------------------------------------------------------------------------------- /server/app/util/MFGDateUtil.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/MFGDateUtil.scala -------------------------------------------------------------------------------- /server/app/util/PeriodicalCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/PeriodicalCache.scala -------------------------------------------------------------------------------- /server/app/util/Ymdh.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/Ymdh.scala -------------------------------------------------------------------------------- /server/app/util/abdera/Entriable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/abdera/Entriable.scala -------------------------------------------------------------------------------- /server/app/util/abdera/Feedable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/abdera/Feedable.scala -------------------------------------------------------------------------------- /server/app/util/ehcache/TimeToLiveCache.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/ehcache/TimeToLiveCache.scala -------------------------------------------------------------------------------- /server/app/util/scalikejdbc/BulkInsert.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/scalikejdbc/BulkInsert.scala -------------------------------------------------------------------------------- /server/app/util/scalikejdbc/ExtendedQueryDSLFeature.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/util/scalikejdbc/ExtendedQueryDSLFeature.scala -------------------------------------------------------------------------------- /server/app/views/Js.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/Js.scala -------------------------------------------------------------------------------- /server/app/views/admin/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/admin/index.scala.html -------------------------------------------------------------------------------- /server/app/views/index.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/index.scala.html -------------------------------------------------------------------------------- /server/app/views/loading.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/loading.scala.html -------------------------------------------------------------------------------- /server/app/views/login.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/login.scala.html -------------------------------------------------------------------------------- /server/app/views/main.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/main.scala.html -------------------------------------------------------------------------------- /server/app/views/modal_map.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/modal_map.scala.html -------------------------------------------------------------------------------- /server/app/views/modal_map_line.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/modal_map_line.scala.html -------------------------------------------------------------------------------- /server/app/views/navbar.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/navbar.scala.html -------------------------------------------------------------------------------- /server/app/views/proxy.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/proxy.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/activities.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/activities.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/citem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/citem.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/cship.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/cship.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/drop.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/drop.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/drop_alpha.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/drop_alpha.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/drop_stage.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/drop_stage.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/from_ship.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/from_ship.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/honor.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/honor.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/modal_ranking.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/modal_ranking.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/modal_route.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/modal_route.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/ranking.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/ranking.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/remodel_slot.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/remodel_slot.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/route.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/route.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/search_snap.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/search_snap.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/ship_book.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/ship_book.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/ship_list.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/ship_list.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/statistics.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/statistics.scala.html -------------------------------------------------------------------------------- /server/app/views/sta/statistics_head.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/sta/statistics_head.scala.html -------------------------------------------------------------------------------- /server/app/views/tweet.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/tweet.scala.html -------------------------------------------------------------------------------- /server/app/views/user/book.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/book.scala.html -------------------------------------------------------------------------------- /server/app/views/user/create.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/create.scala.html -------------------------------------------------------------------------------- /server/app/views/user/create_paging.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/create_paging.scala.html -------------------------------------------------------------------------------- /server/app/views/user/dock.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/dock.scala.html -------------------------------------------------------------------------------- /server/app/views/user/favorite.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/favorite.scala.html -------------------------------------------------------------------------------- /server/app/views/user/head_content.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/head_content.scala.html -------------------------------------------------------------------------------- /server/app/views/user/honor.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/honor.scala.html -------------------------------------------------------------------------------- /server/app/views/user/material.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/material.scala.html -------------------------------------------------------------------------------- /server/app/views/user/mission.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/mission.scala.html -------------------------------------------------------------------------------- /server/app/views/user/modal_fav.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/modal_fav.scala.html -------------------------------------------------------------------------------- /server/app/views/user/modal_fleet.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/modal_fleet.scala.html -------------------------------------------------------------------------------- /server/app/views/user/modal_ship.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/modal_ship.scala.html -------------------------------------------------------------------------------- /server/app/views/user/naval_battle.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/naval_battle.scala.html -------------------------------------------------------------------------------- /server/app/views/user/quest.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/quest.scala.html -------------------------------------------------------------------------------- /server/app/views/user/register_snap.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/register_snap.scala.html -------------------------------------------------------------------------------- /server/app/views/user/ship.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/ship.scala.html -------------------------------------------------------------------------------- /server/app/views/user/ship_detail.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/ship_detail.scala.html -------------------------------------------------------------------------------- /server/app/views/user/ship_image_book.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/ship_image_book.scala.html -------------------------------------------------------------------------------- /server/app/views/user/shipslotitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/shipslotitem.scala.html -------------------------------------------------------------------------------- /server/app/views/user/slotitem.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/slotitem.scala.html -------------------------------------------------------------------------------- /server/app/views/user/snap_delete_pass.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/snap_delete_pass.scala.html -------------------------------------------------------------------------------- /server/app/views/user/snapshot.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/snapshot.scala.html -------------------------------------------------------------------------------- /server/app/views/user/statistics.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/statistics.scala.html -------------------------------------------------------------------------------- /server/app/views/user/user.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/user.scala.html -------------------------------------------------------------------------------- /server/app/views/user/usertab.scala.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/app/views/user/usertab.scala.html -------------------------------------------------------------------------------- /server/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/build.sbt -------------------------------------------------------------------------------- /server/conf/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/application.conf -------------------------------------------------------------------------------- /server/conf/db/migration/default/V100__add_quest_manual_flag.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V100__add_quest_manual_flag.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V101__recreate_ship_image.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V101__recreate_ship_image.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V102__recreate_ship_sound.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V102__recreate_ship_sound.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V103__speedup_map_route.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V103__speedup_map_route.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V104__speedup_map_route.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V104__speedup_map_route.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V105__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V105__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V106__create_cell_position.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V106__create_cell_position.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V107__add_created_to_slot_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V107__add_created_to_slot_item.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V108__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V108__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V109__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (31, "'15 夏 E", '反撃!第二次SN作戦'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V10__create_create_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V10__create_create_item.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V110__add_map_rank.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V110__add_map_rank.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V111__add_map_rank_to_br.sql: -------------------------------------------------------------------------------- 1 | 2 | alter table battle_result add map_rank int; 3 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V112__add_alv_to_slotitem.sql: -------------------------------------------------------------------------------- 1 | 2 | alter table slot_item add alv int; 3 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V113__speedup_ship_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V113__speedup_ship_history.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V114__set_primary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V114__set_primary.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V115__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V115__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V116__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (32, "'15 秋 E", '突入!海上輸送作戦'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V117__fix_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V117__fix_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V118__speedup_battle_score.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V118__speedup_battle_score.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V119__create_calc_score.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V119__create_calc_score.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V11__create_master_slotitem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V11__create_master_slotitem.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V120__add_created_mapinfo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V120__add_created_mapinfo.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V121__create_item_snapshot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V121__create_item_snapshot.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V122__create_myfleet_ranking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V122__create_myfleet_ranking.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V123__add_myfleet_ranking_index.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V123__add_myfleet_ranking_index.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V124__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (33, "'16 冬 E", '出撃!礼号作戦'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V125__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V125__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V126__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (34, "'16 春 E", '開設!基地航空隊'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V127__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V127__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V128__fix_quest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V128__fix_quest.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V129__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (35, "'16 夏 E", '迎撃!第二次マレー沖海戦'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V12__create_ship_book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V12__create_ship_book.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V130__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V130__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V131__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V131__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V132__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V132__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V133__add_event_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V133__add_event_data.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V134__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V134__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V135__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V135__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V136__add_unique_myfleet_ranking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V136__add_unique_myfleet_ranking.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V137__event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (37, "'17 冬 E", '偵察戦力緊急展開!「光」作戦'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V138__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V138__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V139__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V139__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V13__create_item_book.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V13__create_item_book.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V140__fix_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V140__fix_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V141__add_quest_score.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V141__add_quest_score.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V142__add_event_recort.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (38, "'17 春 E", '出撃!北東方面 第五艦隊'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V143__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V143__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V144__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (39, "'17 夏 E", '西方再打通!欧州救援作戦'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V145__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V145__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V146__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V146__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V147__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (40, "'17 秋 E", '捷号決戦!邀撃、レイテ沖海戦(前篇)'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V148__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V148__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V149__expand_cell_info_alphabet.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE cell_info MODIFY alphabet char(4) NOT NULL; 2 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V14__create_ship_image.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V14__create_ship_image.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V150__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V150__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V151__add_event_record.sql: -------------------------------------------------------------------------------- 1 | 2 | insert into area_name values 3 | (41, "'18 冬 E", '捷号決戦!邀撃、レイテ沖海戦(後篇)'); 4 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V152__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V152__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V153__add_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V153__add_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V15__create_map_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V15__create_map_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V16__create_slot_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V16__create_slot_item.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V17__create_ship_slot_item.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V17__create_ship_slot_item.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V18__fix_master_ship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V18__fix_master_ship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V19__create master_ship_extended.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V19__create master_ship_extended.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V1__create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V1__create.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V20__create_master_stype.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V20__create_master_stype.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V21__add_unique_to_basic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V21__add_unique_to_basic.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V22__create_ship_sound.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V22__create_ship_sound.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V23__create_map_route.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V23__create_map_route.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V24__create_battle_result.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V24__create_battle_result.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V25__add_ship_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V25__add_ship_column.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V26__add_filename_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V26__add_filename_column.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V27__create_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V27__create_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V28__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V28__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V29__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V29__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V2__mater_ship_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V2__mater_ship_create.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V30__create_quest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V30__create_quest.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V31__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V31__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V32__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V32__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V33__create_myfleet_auth.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V33__create_myfleet_auth.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V34__create_user_settings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V34__create_user_settings.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V35__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V35__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V36__add_ship_book_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V36__add_ship_book_column.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V37__add_user_settings_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V37__add_user_settings_column.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V38__create_snapshot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V38__create_snapshot.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V39__create_session.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V39__create_session.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V3__create_ship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V3__create_ship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V40__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V40__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V41__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V41__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V42__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V42__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V43__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V43__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V44__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V44__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V45__delete_ctype.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V45__delete_ctype.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V46__delete_master_ship_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V46__delete_master_ship_column.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V47__add_maxeq_specs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V47__add_maxeq_specs.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V48__add_slotitem_level.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V48__add_slotitem_level.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V49__add_revamping_material.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V49__add_revamping_material.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V4__create_ndock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V4__create_ndock.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V50__create_remodel_slot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V50__create_remodel_slot.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V51__create_favorite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V51__create_favorite.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V52__add_title_to_favorite.sql: -------------------------------------------------------------------------------- 1 | 2 | alter table favorite add title text(1000) not null; 3 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V53__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V53__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V54__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V54__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V55__change_utf8_to_utf8mb4.sql: -------------------------------------------------------------------------------- 1 | 2 | alter table admiral default character set utf8mb4; 3 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V56__add_swf_id.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V56__add_swf_id.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V57__create_mission_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V57__create_mission_history.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V58__create_mission_ship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V58__create_mission_ship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V59__create_remodel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V59__create_remodel.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V5__create_admiral.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V5__create_admiral.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V60__create_yome_ship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V60__create_yome_ship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V61__add_unique_yome.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V61__add_unique_yome.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V62__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V62__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V63__recreate_remodel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V63__recreate_remodel.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V64__create_master_remodel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V64__create_master_remodel.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V65__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V65__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V66__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V66__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V67__speedup_battle_result.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V67__speedup_battle_result.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V68__create_master_area_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V68__create_master_area_name.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V69__add_area_name_record.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V69__add_area_name_record.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V6__create_create_ship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V6__create_create_ship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V70__add_index_to_remodel.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V70__add_index_to_remodel.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V71__delete_column_slotitem_name.sql: -------------------------------------------------------------------------------- 1 | 2 | alter table slot_item drop `name`; 3 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V72__speedup_material.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V72__speedup_material.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V73__speedup_battle_result.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V73__speedup_battle_result.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V74__add_medals.sql: -------------------------------------------------------------------------------- 1 | 2 | alter table basic add medals int not null default 0; 3 | -------------------------------------------------------------------------------- /server/conf/db/migration/default/V75__speedup_activities.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V75__speedup_activities.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V76__speedup_deckship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V76__speedup_deckship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V77__speedup_battle_result_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V77__speedup_battle_result_history.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V78__add_ago_progress.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V78__add_ago_progress.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V79__create_honor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V79__create_honor.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V7__create_kdock.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V7__create_kdock.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V80__create_fleet_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V80__create_fleet_group.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V81__add_record_fleet_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V81__add_record_fleet_group.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V82__add_record_fleet_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V82__add_record_fleet_group.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V83__master_remodel_change_primary.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V83__master_remodel_change_primary.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V84__snapshot_text.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V84__snapshot_text.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V85__add_created_to_snapshot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V85__add_created_to_snapshot.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V86__add_snapshot_order.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V86__add_snapshot_order.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V87__add_record_fleet_group.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V87__add_record_fleet_group.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V88__add_index_honor_name.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V88__add_index_honor_name.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V89__add_Basic_column.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V89__add_Basic_column.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V8__create_deck_port.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V8__create_deck_port.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V90__create_ranking.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V90__create_ranking.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V91__add_create_first_ship.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V91__add_create_first_ship.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V92__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V92__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V93__speedup_map_route.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V93__speedup_map_route.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V94__add_event_record.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V94__add_event_record.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V95__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V95__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V96__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V96__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V97__add_record_cell_info.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V97__add_record_cell_info.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V98__add_invisible_to_honor.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V98__add_invisible_to_honor.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V99__create_ship_history.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V99__create_ship_history.sql -------------------------------------------------------------------------------- /server/conf/db/migration/default/V9__create_master_mission.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/db/migration/default/V9__create_master_mission.sql -------------------------------------------------------------------------------- /server/conf/ehcache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/ehcache.xml -------------------------------------------------------------------------------- /server/conf/local.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/local.conf.sample -------------------------------------------------------------------------------- /server/conf/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/logback.xml -------------------------------------------------------------------------------- /server/conf/routes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/conf/routes -------------------------------------------------------------------------------- /server/lib/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/public/client/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/public/client/IE_PROXY.REG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/client/IE_PROXY.REG -------------------------------------------------------------------------------- /server/public/client/myfleetgirls-licenses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/client/myfleetgirls-licenses.html -------------------------------------------------------------------------------- /server/public/javascript/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/javascript/analytics.js -------------------------------------------------------------------------------- /server/public/javascript/lib/jquery.flot.axislabels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/javascript/lib/jquery.flot.axislabels.js -------------------------------------------------------------------------------- /server/public/javascript/lib/sunburst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/javascript/lib/sunburst.js -------------------------------------------------------------------------------- /server/public/javascript/lib/swiftIQSunburstChart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/javascript/lib/swiftIQSunburstChart.min.js -------------------------------------------------------------------------------- /server/public/javascript/lib/utility.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/javascript/lib/utility.min.js -------------------------------------------------------------------------------- /server/public/stylesheet/loading.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/stylesheet/loading.css -------------------------------------------------------------------------------- /server/public/stylesheet/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/public/stylesheet/sunburst.css -------------------------------------------------------------------------------- /server/public/zip/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/test/ShipExperienceSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/test/ShipExperienceSuite.scala -------------------------------------------------------------------------------- /server/test/honor/HonorsSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/test/honor/HonorsSuite.scala -------------------------------------------------------------------------------- /server/test/models/query/PeriodSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/test/models/query/PeriodSuite.scala -------------------------------------------------------------------------------- /server/test/ranking/common/RankingElementSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/test/ranking/common/RankingElementSuite.scala -------------------------------------------------------------------------------- /server/test/util/MFGDateUtilSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/test/util/MFGDateUtilSuite.scala -------------------------------------------------------------------------------- /server/test/util/YmdhSuite.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/server/test/util/YmdhSuite.scala -------------------------------------------------------------------------------- /tester/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/tester/README.org -------------------------------------------------------------------------------- /tester/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/tester/build.sbt -------------------------------------------------------------------------------- /tester/src/main/resources/urls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/tester/src/main/resources/urls -------------------------------------------------------------------------------- /tester/src/main/scala/com/ponkotuy/run/Tester.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/tester/src/main/scala/com/ponkotuy/run/Tester.scala -------------------------------------------------------------------------------- /update/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/build.sbt -------------------------------------------------------------------------------- /update/myfleetgirls.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/myfleetgirls.keystore -------------------------------------------------------------------------------- /update/project/plugin.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/project/plugin.sbt -------------------------------------------------------------------------------- /update/src/main/java/Connection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/src/main/java/Connection.java -------------------------------------------------------------------------------- /update/src/main/java/MFGKeyStore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/src/main/java/MFGKeyStore.java -------------------------------------------------------------------------------- /update/src/main/java/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/src/main/java/Main.java -------------------------------------------------------------------------------- /update/update.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ponkotuy/MyFleetGirls/HEAD/update/update.properties --------------------------------------------------------------------------------